home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevpcfb.c < prev    next >
C/C++ Source or Header  |  1996-09-17  |  23KB  |  901 lines

  1. /* Copyright (C) 1989, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevpcfb.c */
  20. /* IBM PC frame buffer (EGA/VGA) drivers */
  21. #include "memory_.h"
  22. #include "gconfigv.h"            /* for USE_ASM */
  23. #include "gx.h"
  24. #include "gserrors.h"
  25. #include "gsparam.h"
  26. #include "gxdevice.h"
  27. #include "gdevpccm.h"
  28. #include "gdevpcfb.h"
  29.  
  30. /* Macro for casting gx_device argument */
  31. #define fb_dev ((gx_device_ega *)dev)
  32.  
  33. /* Procedure record */
  34. private dev_proc_map_rgb_color(ega0_map_rgb_color);
  35. private dev_proc_map_rgb_color(ega1_map_rgb_color);
  36. #define ega2_map_rgb_color pc_4bit_map_rgb_color
  37. private dev_proc_map_color_rgb(ega01_map_color_rgb);
  38. #define ega2_map_color_rgb pc_4bit_map_color_rgb
  39. #if ega_bits_of_color == 0
  40. #   define ega_map_rgb_color ega0_map_rgb_color
  41. #   define ega_map_color_rgb ega01_map_color_rgb
  42. #else
  43. # if ega_bits_of_color == 1
  44. #   define ega_map_rgb_color ega1_map_rgb_color
  45. #   define ega_map_color_rgb ega01_map_color_rgb
  46. # else
  47. #   define ega_map_rgb_color ega2_map_rgb_color
  48. #   define ega_map_color_rgb ega2_map_color_rgb
  49. # endif
  50. #endif
  51. #define ega_std_procs(get_params, put_params)\
  52.     ega_open,\
  53.     NULL,            /* get_initial_matrix */\
  54.     NULL,            /* sync_output */\
  55.     NULL,            /* output_page */\
  56.     ega_close,\
  57.     ega_map_rgb_color,\
  58.     ega_map_color_rgb,\
  59.     ega_fill_rectangle,\
  60.     ega_tile_rectangle,\
  61.     ega_copy_mono,\
  62.     ega_copy_color,\
  63.     NULL,            /* draw_line */\
  64.     ega_get_bits,\
  65.     get_params,\
  66.     put_params,\
  67.     NULL,            /* map_cmyk_color */\
  68.     NULL,            /* get_xfont_procs */\
  69.     NULL,            /* get_xfont_device */\
  70.     NULL,            /* map_rgb_alpha_color */\
  71.     gx_page_device_get_page_device
  72.  
  73. private gx_device_procs ega_procs = {
  74.     ega_std_procs(NULL, NULL)
  75. };
  76.  
  77. private dev_proc_get_params(svga16_get_params);
  78. private dev_proc_put_params(svga16_put_params);
  79. private gx_device_procs svga16_procs = {
  80.     ega_std_procs(svga16_get_params, svga16_put_params)
  81. };
  82.  
  83. /* All the known instances */
  84.         /* EGA */
  85. gx_device_ega far_data gs_ega_device =
  86.     ega_device("ega", ega_procs, 80, 350, 48.0/35.0, 0x10);
  87.         /* VGA */
  88. gx_device_ega far_data gs_vga_device =
  89.     ega_device("vga", ega_procs, 80, 480, 1.0, 0x12);
  90.         /* Generic SuperVGA, 800x600, 16-color mode */
  91. gx_device_ega far_data gs_svga16_device =
  92.     ega_device("svga16", svga16_procs, 100, 600, 1.0, 0x29 /*Tseng*/);
  93.  
  94. /* Save the BIOS state */
  95. private pcfb_bios_state pcfb_save_state = { -1 };
  96.  
  97. /* Initialize the EGA for graphics mode */
  98. int
  99. ega_open(gx_device *dev)
  100. {    /* Adjust the device resolution. */
  101.     /* This is a hack, pending refactoring of the put_params machinery. */
  102.     switch ( fb_dev->video_mode )
  103.     {
  104.     case 0x10:    /* EGA */
  105.         gx_device_adjust_resolution(dev, 640, 350, 1); break;
  106.     case 0x12:    /* VGA */
  107.         gx_device_adjust_resolution(dev, 640, 480, 1); break;
  108.     default:    /* 800x600 SuperVGA */
  109.         gx_device_adjust_resolution(dev, 800, 600, 1); break;
  110.     }
  111.     if ( pcfb_save_state.display_mode < 0 )
  112.         pcfb_get_state(&pcfb_save_state);
  113.     /* Do implementation-specific initialization */
  114.     pcfb_set_signals(dev);
  115.     pcfb_set_mode(fb_dev->video_mode);
  116.     set_s_map(-1);            /* enable all maps */
  117.     return 0;
  118. }
  119.  
  120. /* Reinitialize the EGA for text mode */
  121. int
  122. ega_close(gx_device *dev)
  123. {    if ( pcfb_save_state.display_mode >= 0 )
  124.       pcfb_set_state(&pcfb_save_state);
  125.     return 0;
  126. }
  127.  
  128. /* Get/put the display mode parameter. */
  129. int
  130. svga16_get_params(gx_device *dev, gs_param_list *plist)
  131. {    int code = gx_default_get_params(dev, plist);
  132.     if ( code < 0 )
  133.       return code;
  134.     return param_write_int(plist, "DisplayMode", &fb_dev->video_mode);
  135. }
  136. int
  137. svga16_put_params(gx_device *dev, gs_param_list *plist)
  138. {    int ecode = 0;
  139.     int code;
  140.     int imode = fb_dev->video_mode;
  141.     const char _ds *param_name;
  142.  
  143.     switch ( code = param_read_int(plist, (param_name = "DisplayMode"), &imode) )
  144.       {
  145.       default:
  146.         ecode = code;
  147.         param_signal_error(plist, param_name, ecode);
  148.       case 0:
  149.       case 1:
  150.         break;
  151.       }
  152.  
  153.     if ( ecode < 0 )
  154.       return ecode;
  155.     code = gx_default_put_params(dev, plist);
  156.     if ( code < 0 )
  157.       return code;
  158.  
  159.     if ( imode != fb_dev->video_mode )
  160.       {    if ( dev->is_open )
  161.           gs_closedevice(dev);
  162.         fb_dev->video_mode = imode;
  163.       }
  164.  
  165.     return 0;
  166. }
  167.  
  168. /* Map a r-g-b color to an EGA color code. */
  169. #define Nb gx_color_value_bits
  170. private gx_color_index
  171. ega0_map_rgb_color(gx_device *dev, gx_color_value r, gx_color_value g,
  172.   gx_color_value b)
  173. {    return pc_4bit_map_rgb_color(dev, r, r, r);
  174. }
  175. private gx_color_index
  176. ega1_map_rgb_color(gx_device *dev, gx_color_value r, gx_color_value g,
  177.   gx_color_value b)
  178. {
  179. #define cvtop (gx_color_value)(1 << (Nb - 1))
  180.     return pc_4bit_map_rgb_color(dev, r & cvtop, g & cvtop, b & cvtop);
  181. }
  182. #undef Nb
  183.  
  184. /* Map a color code to r-g-b. */
  185. #define icolor (int)color
  186. private int
  187. ega01_map_color_rgb(gx_device *dev, gx_color_index color,
  188.   gx_color_value prgb[3])
  189. {
  190. #define one (gx_max_color_value / 2 + 1)
  191.     prgb[0] = (icolor & 4 ? one : 0);
  192.     prgb[1] = (icolor & 2 ? one : 0);
  193.     prgb[2] = (icolor & 1 ? one : 0);
  194.     return 0;
  195. #undef one
  196. }
  197. #undef icolor
  198.  
  199. /* ------ Internal routines ------ */
  200.  
  201. /* Structure for operation parameters. */
  202. /* Note that this structure is known to assembly code. */
  203. /* Not all parameters are used for every operation. */
  204. typedef struct rop_params_s {
  205.     fb_ptr dest;            /* pointer to frame buffer */
  206.     int draster;            /* raster of frame buffer */
  207.     const byte *src;        /* pointer to source data */
  208.     int sraster;            /* source raster */
  209.     int width;            /* width in bytes */
  210.     int height;            /* height in scan lines */
  211.     int shift;            /* amount to right shift source */
  212.     int invert;            /* 0 or -1 to invert source */
  213.     int data;            /* data for fill */
  214. } rop_params;
  215. typedef rop_params _ss *rop_ptr;
  216.  
  217. /* Assembly language routines */
  218.  
  219. #if USE_ASM
  220. void memsetcol(P1(rop_ptr)); /* dest, draster, height, data */
  221. #else
  222. #define memsetcol cmemsetcol
  223. private void
  224. cmemsetcol(rop_ptr rop)
  225. {    byte *addr = rop->dest;
  226.     int yc = rop->height;
  227.     byte data = rop->data;
  228.     int draster = rop->draster;
  229.     while ( yc-- )
  230.      { byte_discard(*addr);
  231.        *addr = data;
  232.        addr += draster;
  233.      }
  234. }
  235. #endif
  236.  
  237. #if USE_ASM
  238. void memsetrect(P1(rop_ptr)); /* dest, draster, width, height, data */
  239. #else
  240. #define memsetrect cmemsetrect
  241. private void
  242. cmemsetrect(rop_ptr rop)
  243. {    int yc = rop->height;
  244.     int width = rop->width;
  245.     if ( yc <= 0 || width <= 0 ) return;
  246.        {    byte *addr = rop->dest;
  247.         byte data = rop->data;
  248.         if ( width > 5 )    /* use memset */
  249.            {    int skip = rop->draster;
  250.             do
  251.                {    memset(addr, data, width);
  252.                 addr += skip;
  253.                }
  254.             while ( --yc );
  255.            }
  256.         else            /* avoid the fixed overhead */
  257.            {    int skip = rop->draster - width;
  258.             do
  259.                {    int cnt = width;
  260.                 do { *addr++ = data; } while ( --cnt );
  261.                 addr += skip;
  262.                }
  263.             while ( --yc );
  264.            }
  265.        }
  266. }
  267. #endif
  268.  
  269. #if USE_ASM
  270. void memrwcol(P1(rop_ptr)); /* dest, draster, src, sraster, height, shift, invert */
  271. #  define memrwcol0(rop) memrwcol(rop)    /* same except shift = 0 */
  272. #else
  273. #  define memrwcol cmemrwcol
  274. #  define memrwcol0 cmemrwcol0
  275. private void
  276. cmemrwcol(rop_ptr rop)
  277. {    byte *dp = rop->dest;
  278.     const byte *sp = rop->src;
  279.     int yc = rop->height;
  280.     int shift = rop->shift;
  281.     byte invert = rop->invert;
  282.     int sraster = rop->sraster, draster = rop->draster;
  283.     while ( yc-- )
  284.      { byte_discard(*dp);
  285.        *dp = ((*sp >> shift) + (*sp << (8 - shift))) ^ invert;
  286.        dp += draster, sp += sraster;
  287.      }
  288. }
  289. private void
  290. cmemrwcol0(rop_ptr rop)
  291. {    byte *dp = rop->dest;
  292.     const byte *sp = rop->src;
  293.     int yc = rop->height;
  294.     byte invert = rop->invert;
  295.     int sraster = rop->sraster, draster = rop->draster;
  296.     if ( yc > 0 ) do
  297.      { byte_discard(*dp);
  298.        *dp = *sp ^ invert;
  299.        dp += draster, sp += sraster;
  300.      }
  301.     while ( --yc );
  302. }
  303. #endif
  304.  
  305. #if USE_ASM
  306. void memrwcol2(P1(rop_ptr)); /* dest, draster, src, sraster, height, shift, invert */
  307. #else
  308. #define memrwcol2 cmemrwcol2
  309. private void
  310. cmemrwcol2(rop_ptr rop)
  311. {    byte *dp = rop->dest;
  312.     const byte *sp = rop->src;
  313.     int yc = rop->height;
  314.     int shift = rop->shift;
  315.     byte invert = rop->invert;
  316.     int sraster = rop->sraster, draster = rop->draster;
  317.     while ( yc-- )
  318.      { byte_discard(*dp);
  319.        *dp = ((sp[1] >> shift) + (*sp << (8 - shift))) ^ invert;
  320.        dp += draster, sp += sraster;
  321.      }
  322. }
  323. #endif
  324.  
  325. /* Forward definitions */
  326. int ega_write_dot(P4(gx_device *, int, int, gx_color_index));
  327. private void near fill_rectangle(P4(rop_ptr, int, int, int));
  328. private void near fill_row_only(P4(byte *, int, int, int));
  329.  
  330. /* Clean up after writing */
  331. #define dot_end()\
  332.   set_g_mask(0xff)            /* all bits on */
  333.  
  334. /* Write a dot using the EGA color codes. */
  335. /* This doesn't have to be efficient. */
  336. int
  337. ega_write_dot(gx_device *dev, int x, int y, gx_color_index color)
  338. {    byte data[4];
  339.     data[0] = (byte)color;
  340.     return ega_copy_color(dev, data, 1, 4, gx_no_bitmap_id, x, y, 1, 1);
  341. }
  342.  
  343. /* Macro for testing bit-inclusion */
  344. #define bit_included_in(x,y) !((x)&~(y))
  345.  
  346. /* Copy a monochrome bitmap.  The colors are given explicitly. */
  347. /* Color = gx_no_color_index means transparent (no effect on the image). */
  348. int
  349. ega_copy_mono(gx_device *dev,
  350.   const byte *base, int sourcex, int raster, gx_bitmap_id id,
  351.   int x, int y, int w, int h, gx_color_index izero, gx_color_index ione)
  352. {    rop_params params;
  353. #define czero (int)izero
  354. #define cone (int)ione
  355.     int dleft, count;
  356.     byte mask, rmask;
  357.     fb_ptr save_dest;
  358.     int other_color = -1;
  359.     fit_copy(dev, base, sourcex, raster, id, x, y, w, h);
  360.     params.dest = mk_fb_ptr(x, y);
  361.     params.draster = fb_dev->raster;
  362.     params.src = base + (sourcex >> 3);
  363.     params.sraster = raster;
  364.     params.height = h;
  365.     params.shift = (x - sourcex) & 7;
  366.     /* Analyze the 16 possible cases: each of izero and ione may be */
  367.     /* 0, 0xf, transparent, or some other color. */
  368.     switch ( czero )
  369.        {
  370.     case no_color:
  371.         switch ( cone )
  372.            {
  373.         default:        /* (T, other) */
  374.             /* Must do 2 passes */
  375.             other_color = cone;
  376.             save_dest = params.dest;
  377.             /* falls through */
  378.         case 0:            /* (T, 0) */
  379.             set_g_function(gf_AND);
  380.             params.invert = -1;
  381.             break;
  382.         case 0xf:        /* (T, 0xf) */
  383.             set_g_function(gf_OR);
  384.             params.invert = 0;
  385.             break;
  386.         case no_color:        /* (T, T) */
  387.             return 0;    /* nothing to do */
  388.            }
  389.         break;
  390.     case 0:
  391.         params.invert = 0;
  392.         switch ( cone )
  393.            {
  394.         default:        /* (0, other) */
  395.             set_g_const(0);
  396.             set_g_const_map(cone ^ 0xf);
  397.             /* falls through */
  398.         case 0xf:        /* (0, 0xf) */
  399.             break;
  400.         case no_color:        /* (0, T) */
  401.             set_g_function(gf_AND);
  402.             break;
  403.            }
  404.         break;
  405.     case 0xf:
  406.         params.invert = -1;
  407.         switch ( cone )
  408.            {
  409.         case 0:            /* (0xf, 0) */
  410.             break;
  411.         default:        /* (0xf, other) */
  412.             set_g_const(0xf);
  413.             set_g_const_map(cone);
  414.             break;
  415.         case no_color:        /* (0xf, T) */
  416.             set_g_function(gf_OR);
  417.             /* falls through */
  418.            }
  419.         break;
  420.     default:
  421.         switch ( cone )
  422.            {
  423.         default:        /* (other, not T) */
  424.             if ( bit_included_in(czero, cone) )
  425.                {    set_g_const(czero);
  426.                 set_g_const_map(czero ^ cone ^ 0xf);
  427.                 params.invert = 0;
  428.                 break;
  429.                }
  430.             else if ( bit_included_in(cone, czero) )
  431.                {    set_g_const(cone);
  432.                 set_g_const_map(cone ^ czero ^ 0xf);
  433.                 params.invert = -1;
  434.                 break;
  435.                }
  436.             /* No way around it, fill with one color first. */
  437.             save_dest = params.dest;
  438.             fill_rectangle((rop_ptr)¶ms, x & 7, w, cone);
  439.             params.dest = save_dest;
  440.             set_g_function(gf_XOR);
  441.             set_s_map(czero ^ cone);
  442.             other_color = -2;    /* must reset s_map at end */
  443.             params.invert = -1;
  444.             break;
  445.         case no_color:        /* (other, T) */
  446.             /* Must do 2 passes */
  447.             other_color = czero;
  448.             save_dest = params.dest;
  449.             set_g_function(gf_AND);
  450.             params.invert = 0;
  451.             break;
  452.            }
  453.         break;
  454.        }
  455.     /* Actually copy the bits. */
  456.     dleft = 8 - (x & 7);
  457.     mask = 0xff >> (8 - dleft);
  458.     count = w - dleft;
  459.     if ( count < 0 )
  460.         mask -= mask >> w,
  461.         rmask = 0;
  462.     else
  463.         rmask = 0xff00 >> (count & 7);
  464.     /* params: dest, src, sraster, height, shift, invert */
  465.     /* Smashes params.src, params.dest, count. */
  466. copy:    set_g_mask(mask);
  467.     if ( params.shift == 0 )    /* optimize the aligned case */
  468.        {    /* Do left column */
  469.         memrwcol0((rop_ptr)¶ms);
  470.         /* Do center */
  471.         if ( (count -= 8) >= 0 )
  472.            {    out_g_mask(0xff);
  473.             do
  474.                {    params.src++, params.dest++;
  475.                 memrwcol0((rop_ptr)¶ms);
  476.                }
  477.             while ( (count -= 8) >= 0 );
  478.            }
  479.         /* Do right column */
  480.         if ( rmask )
  481.            {    params.src++, params.dest++;
  482.             out_g_mask(rmask);
  483.             memrwcol0((rop_ptr)¶ms);
  484.            }
  485.        }
  486.     else
  487.        {    /* Do left column */
  488.         int sleft = 8 - (sourcex & 7);
  489.         if ( sleft >= dleft )
  490.            {    /* Source fits in one byte */
  491.             memrwcol((rop_ptr)¶ms);
  492.            }
  493.         else if ( w <= sleft )
  494.            {    /* Source fits in one byte, thin case */
  495.             memrwcol((rop_ptr)¶ms);
  496.             goto fin;
  497.            }
  498.         else
  499.            {    memrwcol2((rop_ptr)¶ms);
  500.             params.src++;
  501.            }
  502.         /* Do center */
  503.         if ( (count -= 8) >= 0 )
  504.            {    out_g_mask(0xff);
  505.             do
  506.                {    params.dest++;
  507.                 memrwcol2((rop_ptr)¶ms);
  508.                 params.src++;
  509.                }
  510.             while ( (count -= 8) >= 0 );
  511.            }
  512.         /* Do right column */
  513.         if ( rmask )
  514.            {    out_g_mask(rmask);
  515.             params.dest++;
  516.             if ( count + 8 <= params.shift )
  517.                 memrwcol((rop_ptr)¶ms);
  518.             else
  519.                 memrwcol2((rop_ptr)¶ms);
  520.            }
  521.        }
  522. fin:    if ( other_color != -1 )
  523.        {    if ( other_color >= 0 )
  524.            {    /* Do the second pass on (T, other) or (other, T). */
  525.             count = w - dleft;
  526.             params.src = base + (sourcex >> 3);
  527.             params.dest = save_dest;
  528.             params.invert ^= -1;
  529.             set_s_map(other_color);
  530.             set_g_function(gf_OR);
  531.             other_color = -2;
  532.             goto copy;
  533.            }
  534.         else
  535.            {    /* Finished second pass, restore s_map */
  536.             set_s_map(-1);
  537.            }
  538.        }
  539.     set_g_function(gf_WRITE);
  540.     set_g_const_map(0);
  541.     dot_end();
  542.     return 0;
  543. #undef czero
  544. #undef cone
  545. }
  546.  
  547. /* Copy a color pixelmap.  This is just like a bitmap, */
  548. /* except that each pixel takes 4 bits instead of 1. */
  549. int
  550. ega_copy_color(gx_device *dev,
  551.   const byte *base, int sourcex, int raster, gx_bitmap_id id,
  552.   int x, int y, int w, int h)
  553. {    const byte *line = base + (sourcex >> 1);
  554.     unsigned mask = 0x80 >> (x & 7);
  555.     int px = sourcex & 1;
  556.     fb_ptr fb_line;
  557.     int fb_raster = fb_dev->raster;
  558.     fit_copy(dev, base, sourcex, raster, id, x, y, w, h);
  559.     fb_line = mk_fb_ptr(x, y);
  560.     set_g_mode(gm_FILL);
  561.     select_g_mask();
  562.     for ( ; ; px++ )
  563.     {    const byte *bptr = line;
  564.         fb_ptr fbptr = fb_line;
  565.         int py = h;
  566.         out_g_mask(mask);
  567.         if ( px & 1 )
  568.         {    do
  569.                {    byte_discard(*fbptr);    /* latch frame buffer data */
  570.                 *fbptr = *bptr;
  571.                 bptr += raster;
  572.                 fbptr += fb_raster;
  573.                }
  574.             while ( --py );
  575.             line++;
  576.         }
  577.         else
  578.         {    do
  579.                {    byte_discard(*fbptr);    /* latch frame buffer data */
  580.                 *fbptr = *bptr >> 4;
  581.                 bptr += raster;
  582.                 fbptr += fb_raster;
  583.                }
  584.             while ( --py );
  585.         }
  586.         if ( !--w )
  587.             break;
  588.         if ( (mask >>= 1) == 0 )
  589.             mask = 0x80, fb_line++;
  590.     }
  591.     set_g_mode(gm_DATA);
  592.     dot_end();
  593.     return 0;
  594. }
  595.  
  596. /* Fill a rectangle. */
  597. int
  598. ega_fill_rectangle(gx_device *dev, int x, int y, int w, int h,
  599.   gx_color_index color)
  600. {    rop_params params;
  601.     fit_fill(dev, x, y, w, h);
  602.     params.dest = mk_fb_ptr(x, y);
  603.     if ( h == 1 )
  604.         fill_row_only(params.dest, x & 7, w, (int)color);
  605.     else
  606.        {    params.draster = fb_dev->raster;
  607.         params.height = h;
  608.         fill_rectangle((rop_ptr)¶ms, x & 7, w, (int)color);
  609.         dot_end();
  610.        }
  611.     return 0;
  612. }
  613.  
  614. /* Tile a rectangle.  Note that the two colors must both be supplied, */
  615. /* i.e. neither one can be gx_no_color_index (transparent): */
  616. /* a transparent color means that the tile is colored, not a mask. */
  617. int
  618. ega_tile_rectangle(gx_device *dev, const gx_tile_bitmap *tile,
  619.   int x, int y, int w, int h, gx_color_index czero, gx_color_index cone,
  620.   int px, int py)
  621. #define zero (int)czero
  622. #define one (int)cone
  623. {    rop_params params;
  624.     int xmod, width_bytes;
  625.     int tile_height = tile->size.y;
  626.     int xbit;
  627.     int lcount;
  628.     int mask, rmask;
  629.     byte narrow;
  630.     byte again;
  631.     int const_bits, maps;
  632.     int ymod, yleft;
  633.     fit_fill(dev, x, y, w, h);
  634.     /* We only handle the easiest cases directly. */
  635.     if ( (tile->size.x & 7) || one == -1 || zero == -1 || px || py )
  636.         return gx_default_tile_rectangle(dev, tile, x, y, w, h,
  637.             czero, cone, px, py);
  638.     /* Following is similar to aligned case of copy_mono */    
  639.     params.dest = mk_fb_ptr(x, y);
  640.     params.draster = fb_dev->raster;
  641.     params.sraster = tile->raster;
  642.     params.shift = 0;
  643.     xbit = x & 7;
  644.     /* Set up the graphics registers */
  645.     const_bits = (zero ^ one) ^ 0xf;
  646.     if ( const_bits )
  647.        {    set_g_const(zero);    /* either color will do */
  648.         set_g_const_map(const_bits);
  649.        }
  650.     if ( (maps = zero & ~one) != 0 )
  651.        {    set_s_map(maps += const_bits);
  652.         params.invert = -1;
  653.         again = one & ~zero;
  654.        }
  655.     else
  656.        {    maps = one & ~zero;
  657.         set_s_map(maps += const_bits);
  658.         params.invert = 0;
  659.         again = 0;
  660.        }
  661.     xmod = (x % tile->size.x) >> 3;
  662.     width_bytes = tile->size.x >> 3;
  663.     mask = 0xff >> xbit;
  664.     if ( w + xbit <= 8 )
  665.         mask -= mask >> w,
  666.         rmask = 0,
  667.         narrow = 1;
  668.     else
  669.        {    rmask = (0xff00 >> ((w + x) & 7)) & 0xff;
  670.         if ( xbit )    w += xbit - 8;
  671.         else        mask = 0, --xmod, --params.dest;
  672.         narrow = 0;
  673.        }
  674.     ymod = y % tile_height;
  675. tile:    yleft = tile_height - ymod;
  676.     params.src = tile->data + ymod * params.sraster + xmod;
  677.     lcount = h;
  678.     if ( narrow )            /* Optimize narrow case */
  679.        {    set_g_mask(mask);
  680.         if ( lcount > yleft )
  681.            {    params.height = yleft;
  682.             memrwcol0((rop_ptr)¶ms);
  683.             params.dest += yleft * params.draster;
  684.             params.src = tile->data + xmod;
  685.             params.height = tile_height;
  686.             lcount -= yleft;
  687.             while ( lcount >= tile_height )
  688.                {    memrwcol0((rop_ptr)¶ms);
  689.                 params.dest += tile_height * params.draster;
  690.                 lcount -= tile_height;
  691.                }
  692.            }
  693.         if ( lcount )
  694.            {    params.height = lcount;
  695.             memrwcol0((rop_ptr)¶ms);
  696.            }
  697.        }
  698.     else
  699.        {    fb_ptr line = params.dest;
  700.         int xpos = width_bytes - xmod;
  701.         while ( 1 )
  702.            {    int xleft = xpos;
  703.             int count = w;
  704.             params.height = (lcount > yleft ? yleft : lcount);
  705.             /* Do first byte, if not a full byte. */
  706.             if ( mask )
  707.                {    set_g_mask(mask);
  708.                 memrwcol0((rop_ptr)¶ms);
  709.                }
  710.             /* Do full bytes */
  711.             if ( (count -= 8) >= 0 )
  712.                {    set_g_mask(0xff);
  713.                 do
  714.                    {    if ( !--xleft )
  715.                         xleft = width_bytes,
  716.                         params.src -= width_bytes;
  717.                     ++params.src, ++params.dest;
  718.                     memrwcol0((rop_ptr)¶ms);
  719.                    }
  720.                 while ( (count -= 8) >= 0 );
  721.                }
  722.             /* Do last byte */
  723.             if ( rmask )
  724.                {    if ( !--xleft )
  725.                     xleft = width_bytes,
  726.                     params.src -= width_bytes;
  727.                 set_g_mask(rmask);
  728.                 ++params.src, ++params.dest;
  729.                 memrwcol0((rop_ptr)¶ms);
  730.                }
  731.             if ( (lcount -= params.height) == 0 ) break;
  732.             params.dest = line += params.height * params.draster;
  733.             params.src = tile->data + xmod;
  734.             yleft = tile_height;
  735.            }
  736.        }
  737.     /* Now do the second color if needed */
  738.     if ( again )
  739.        {    maps = again + const_bits;
  740.         set_s_map(maps);
  741.         again = 0;
  742.         params.dest = mk_fb_ptr(x, y);
  743.         if ( mask == 0 ) params.dest--;
  744.         params.invert = 0;
  745.         goto tile;
  746.        }
  747.     if ( maps != 0xf )
  748.         set_s_map(-1);
  749.     if ( const_bits )
  750.         set_g_const_map(0);
  751.     dot_end();
  752.     return 0;
  753. }
  754.  
  755. /* Read scan lines back from the frame buffer. */
  756. int
  757. ega_get_bits(gx_device *dev, int y, byte *data, byte **actual_data)
  758. {    /* The maximum width for an EGA/VGA device is 800 pixels.... */
  759.     int width_bytes = (dev->width + 7) >> 3;
  760.     int i;
  761.     bits32 *dest;
  762.     const byte *src;
  763.     const byte *end;
  764.     byte planes[100*4];
  765.     /* Plane 0 is the least significant plane. */
  766.     /* We know we're on a little-endian machine.... */
  767. #define spread4(v)\
  768.  v+0x00000000, v+0x08000000, v+0x80000000, v+0x88000000,\
  769.  v+0x00080000, v+0x08080000, v+0x80080000, v+0x88080000,\
  770.  v+0x00800000, v+0x08800000, v+0x80800000, v+0x88800000,\
  771.  v+0x00880000, v+0x08880000, v+0x80880000, v+0x88880000
  772.     static const bits32 far_data spread8[256] =
  773.     {    spread4(0x0000), spread4(0x0800),
  774.         spread4(0x8000), spread4(0x8800),
  775.         spread4(0x0008), spread4(0x0808),
  776.         spread4(0x8008), spread4(0x8808),
  777.         spread4(0x0080), spread4(0x0880),
  778.         spread4(0x8080), spread4(0x8880),
  779.         spread4(0x0088), spread4(0x0888),
  780.         spread4(0x8088), spread4(0x8888)
  781.     };
  782.  
  783.     if ( y < 0 || y >= dev->height || dev->width > 800 )
  784.       return_error(gs_error_rangecheck);
  785.     /* Read 4 planes into the holding buffer. */
  786.     for ( i = 0; i < 4; ++i )
  787.       {    set_g_read_plane(i);
  788.         memcpy(planes + 100 * i, mk_fb_ptr(0, y), width_bytes);
  789.       }
  790.     /* Now assemble the final data from the planes. */
  791.     for ( dest = (bits32 *)data, src = planes, end = src + width_bytes;
  792.           src < end; ++dest, ++src
  793.         )
  794.       *dest = (((((spread8[src[0]] >> 1) | spread8[src[100]]) >> 1) |
  795.             spread8[src[200]]) >> 1) | spread8[src[300]];
  796.     if ( actual_data != 0 )
  797.       *actual_data = data;
  798.     return 0;
  799. }
  800.  
  801. /* ------ Internal routines ------ */
  802.  
  803. /* Mask table for rectangle fill. */
  804. static const byte rmask_tab[9] =
  805.    {    0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff
  806.    };
  807.  
  808. /* Fill a rectangle specified by pointer into frame buffer, */
  809. /* starting bit within byte, width, and height. */
  810. /* Smashes rop->dest. */
  811. private void near
  812. fill_rectangle(register rop_ptr rop, int bit, int w, int color)
  813.   /* rop: dest, draster, height */
  814. {    set_g_const(color);
  815.     set_g_const_map(0xf);
  816.     select_g_mask();
  817.     if ( bit + w <= 8 )
  818.        {    /* Less than one byte */
  819.         out_g_mask(rmask_tab[w] >> bit);
  820.         memsetcol(rop);
  821.        }
  822.     else
  823.        {    byte right_mask;
  824.         if ( bit )
  825.            {    out_g_mask(0xff >> bit);
  826.             memsetcol(rop);
  827.             rop->dest++;
  828.             w += bit - 8;
  829.            }
  830.         if ( w >= 8 )
  831.            {    out_g_mask(0xff);    /* all bits */
  832.             rop->width = w >> 3;
  833.             memsetrect(rop);
  834.             rop->dest += rop->width;
  835.             w &= 7;
  836.            }
  837.         if ( (right_mask = rmask_tab[w]) != 0 )
  838.            {    out_g_mask(right_mask);
  839.             memsetcol(rop);
  840.            }
  841.        }
  842.     set_g_const_map(0);
  843. }
  844.  
  845. /* Fill a single row specified by pointer into frame buffer, */
  846. /* starting bit within byte, and width; clean up afterwards. */
  847. #define r_m_w(ptr) (*(ptr))++        /* read & write, data irrelevant */
  848. private void near
  849. fill_row_only(byte *dest, int bit, int w, int color)
  850.   /* rop: dest */
  851. {    if ( bit + w <= 8 )
  852.        {    /* Less than one byte. */
  853.         /* Optimize filling with black or white. */
  854.         switch ( color )
  855.         {
  856.         case 0:
  857.             set_g_mask(rmask_tab[w] >> bit);
  858.             *dest &= color;        /* read, then write 0s; */
  859.                 /* some compilers optimize &= 0 to a store. */
  860.             out_g_mask(0xff);        /* dot_end */
  861.             break;
  862.         case 0xf:
  863.             set_g_mask(rmask_tab[w] >> bit);
  864.             *dest |= 0xff;        /* read, then write 1s; */
  865.                 /* some compilers optimize &= 0 to a store. */
  866.             out_g_mask(0xff);        /* dot_end */
  867.             break;
  868.         default:
  869.             set_g_const(color);
  870.             set_g_const_map(0xf);
  871.             set_g_mask(rmask_tab[w] >> bit);
  872.             r_m_w(dest);
  873.             out_g_mask(0xff);        /* dot_end */
  874.             set_g_const_map(0);
  875.         }
  876.        }
  877.     else
  878.        {    byte right_mask;
  879.         int byte_count;
  880.         set_g_const(color);
  881.         set_g_const_map(0xf);
  882.         select_g_mask();
  883.         if ( bit )
  884.            {    out_g_mask(0xff >> bit);
  885.             r_m_w(dest);
  886.             dest++;
  887.             w += bit - 8;
  888.            }
  889.         byte_count = w >> 3;
  890.         if ( (right_mask = rmask_tab[w & 7]) != 0 )
  891.            {    out_g_mask(right_mask);
  892.             r_m_w(dest + byte_count);
  893.            }
  894.         out_g_mask(0xff);
  895.         if ( byte_count )
  896.            {    memset(dest, 0, byte_count);    /* data irrelevant */
  897.            }
  898.         set_g_const_map(0);
  899.        }
  900. }
  901.